golang.org/x/net/http2.http2Config.MaxReadFrameSize (field)

13 uses

	net/http
		h2_bundle.go#L1058: 	MaxReadFrameSize             uint32
		h2_bundle.go#L1075: 		MaxReadFrameSize:             h2.MaxReadFrameSize,
		h2_bundle.go#L1095: 		MaxReadFrameSize:          h2.MaxReadFrameSize,
		h2_bundle.go#L1103: 	if conf.MaxReadFrameSize < http2minMaxFrameSize {
		h2_bundle.go#L1104: 		conf.MaxReadFrameSize = http2minMaxFrameSize
		h2_bundle.go#L1105: 	} else if conf.MaxReadFrameSize > http2maxFrameSize {
		h2_bundle.go#L1106: 		conf.MaxReadFrameSize = http2maxFrameSize
		h2_bundle.go#L1136: 	http2setDefault(&conf.MaxReadFrameSize, http2minMaxFrameSize, http2maxFrameSize, http2defaultMaxReadFrameSize)
		h2_bundle.go#L1177: 		conf.MaxReadFrameSize = uint32(h2.MaxReadFrameSize)
		h2_bundle.go#L4444: 	fr.SetMaxReadFrameSize(conf.MaxReadFrameSize)
		h2_bundle.go#L4886: 		{http2SettingMaxFrameSize, conf.MaxReadFrameSize},
		h2_bundle.go#L8147: 	cc.fr.SetMaxReadFrameSize(conf.MaxReadFrameSize)
		h2_bundle.go#L8168: 	initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxFrameSize, Val: conf.MaxReadFrameSize})